home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / ds5000.md / devConsole.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  3KB  |  108 lines

  1. /* 
  2.  * devConsole.c --
  3.  *
  4.  *    This module provides a routine to output characters onto the
  5.  *    console.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  */
  16.  
  17. #ifndef lint
  18. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/dev/ds5000.md/devConsole.c,v 9.0 89/09/12 15:02:22 douglis Stable $ SPRITE (Berkeley)";
  19. #endif /* not lint */
  20.  
  21. #include "sprite.h"
  22. #include "dev.h"
  23. #include "tty.h"
  24. #include "graphics.h"
  25. #include "dc7085.h"
  26.  
  27. Boolean    devDivertXInput = FALSE;
  28.  
  29.  
  30. /*
  31.  *----------------------------------------------------------------------
  32.  *
  33.  * DevConsoleRawProc --
  34.  *
  35.  *    This procedure is invoked from the Td module to handle control
  36.  *    requests on the raw side of the console.  This procedure is
  37.  *    special because output to the console is not transmitted on
  38.  *    a serial line:  it gets drawn directly on the screen by calling
  39.  *    a procedure in the boot ROM.
  40.  *
  41.  * Results:
  42.  *    The return value is the number of bytes returned to the caller
  43.  *    at outBuffer.
  44.  *
  45.  * Side effects:
  46.  *    Depends on the control operation.  Most likely effect is to
  47.  *    draw data on the screen.
  48.  *
  49.  *----------------------------------------------------------------------
  50.  */
  51. /* ARGSUSED */
  52. int
  53. DevConsoleRawProc(dcPtr, operation, inBufSize, inBuffer, outBufSize, outBuffer)
  54.     register DevDC7085 *dcPtr;    /* Information about keyboard device. */
  55.     int operation;        /* What to do:  TD_RAW_OUTPUT_READY etc. */
  56.     int inBufSize;        /* Size of input buffer for operation. */
  57.     char *inBuffer;        /* Input buffer. */
  58.     int outBufSize;        /* Size of output buffer for operation. */
  59.     char *outBuffer;        /* Output buffer. */
  60. {
  61.     int c;
  62.  
  63.     if (operation != TD_RAW_OUTPUT_READY) {
  64.     return 0;
  65.     }
  66.     while (TRUE) {
  67.     /*
  68.      * Note:  must call DevTtyOutputChar directly, rather than calling
  69.      * indirectly through dcPtr->outputProc:  dcPtr->outputProc must point
  70.      * to a dummy procedure so the DC7850 interrupt handler won't grab
  71.      * characters and output them to the keyboard.
  72.      */
  73.     c = DevTtyOutputChar(dcPtr->ttyPtr);
  74.     if (c == -1) {
  75.         break;
  76.     }
  77.     Dev_GraphicsPutc(c);
  78.     }
  79.     return 0;
  80. }
  81.  
  82.  
  83. /*
  84.  *----------------------------------------------------------------------
  85.  *
  86.  * Dev_ConsoleReset --
  87.  *
  88.  *    Change where keyboard input goes.  TRUE => it will go to the normal
  89.  *    console input routines.  FALSE => means that it will go back to X
  90.  *    if X is using it.
  91.  *
  92.  * Results:
  93.  *    The return value is the number of bytes returned to the caller
  94.  *    at outBuffer.
  95.  *
  96.  * Side effects:
  97.  *    Depends on the control operation.  Most likely effect is to
  98.  *    draw data on the screen.
  99.  *
  100.  *----------------------------------------------------------------------
  101.  */
  102. void
  103. Dev_ConsoleReset(keyboardMode)
  104.     Boolean    keyboardMode;
  105. {
  106.     devDivertXInput = keyboardMode;
  107. }
  108.